|
Quick Care
Digital Healthcare Platform
|
{{ doctor_display }}
{{ prescription.appointment.doctor.specialization or 'General Physician' }}
{{ prescription.appointment.doctor.user.email }}
{% if prescription.appointment.doctor.user.phone %}{{ prescription.appointment.doctor.user.phone | format_phone }}{% endif %} |
|
Patient Name
{{ prescription.appointment.patient.user.name }}
|
Age / Gender
{% if prescription.appointment.patient.user.date_of_birth %}
{% set dob = prescription.appointment.patient.user.date_of_birth %}
{% set age = ((prescription.created_at.date() - dob).days / 365.25) | int %}{{ age }} Y
{% else %}—{% endif %}
/ {{ prescription.appointment.patient.user.gender | title if
prescription.appointment.patient.user.gender else 'N/A' }}
|
Date Issued
{{ prescription.created_at.strftime('%d %b %Y') }}
|
Prescription ID
#{{ '%05d'|format(prescription.id) }}
|
|
{{ prescription.vitals_bp }}
mmHg
BP
| {% endif %}
{% if prescription.vitals_temp %}
{{ prescription.vitals_temp }}
°F
Temp
| {% endif %}
|
{{ prescription.vitals_weight }}
kg
Weight
| {% endif %}
{% if prescription.vitals_pulse %}
{{ prescription.vitals_pulse }}
bpm
Pulse
| {% endif %}
|
{{ prescription.follow_up_date.strftime('%b') }}
{{ prescription.follow_up_date.strftime('%d') }}
{{ prescription.follow_up_date.strftime('%Y') }}
|
Return Visit {% if prescription.follow_up_notes %}{{ prescription.follow_up_notes }}{% endif %} |
| Rx | Prescribed Medicines |
| # | Medicine | Dosage | Frequency | Duration |
|---|---|---|---|---|
| {{ loop.index }} | {{ medicine.medicine_name }} | {% if medicine.dosage %}{{ medicine.dosage }}{% else %}—{% endif %} | {% if medicine.frequency %}{{ medicine.frequency }}{% else %}—{% endif %} | {% if medicine.duration %}{{ medicine.duration }}{% else %}—{% endif %} |
| Note: {{ medicine.instructions }} | ||||